From: Jim Blandy Date: Sun, 18 Jul 1993 06:13:07 +0000 (+0000) Subject: * wakeup.c: Use CPP tangle from autoconf manual to #include the X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~94933 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=af40bbfa99a32434416278aff411cd2a2dd05db4;p=emacs.git * wakeup.c: Use CPP tangle from autoconf manual to #include the correct combination of and . --- diff --git a/lib-src/wakeup.c b/lib-src/wakeup.c index 07c324d1210..e481bee8324 100644 --- a/lib-src/wakeup.c +++ b/lib-src/wakeup.c @@ -1,9 +1,20 @@ /* Program to produce output at regular intervals. */ +#include "config.h" + #include -#include #include + +#ifdef TIME_WITH_SYS_TIME #include +#include +#else +#ifdef HAVE_SYS_TIME_H +#include +#else +#include +#endif +#endif struct tm *localtime ();